DataSource for Entity Framework in WPF
C1.Data.DataSource Namespace / DependencyObjectCollection<T> Class / InsertItem Method
The zero-based index at which item should be inserted.
The object to insert.

In This Topic
    InsertItem Method (DependencyObjectCollection<T>)
    In This Topic
    Inserts an item into the collection at the specified index.
    Syntax
    'Declaration
     
    Protected Overrides Sub InsertItem( _
       ByVal index As Integer, _
       ByVal item As T _
    ) 
    protected override void InsertItem( 
       int index,
       T item
    )

    Parameters

    index
    The zero-based index at which item should be inserted.
    item
    The object to insert.
    See Also